home *** CD-ROM | disk | FTP | other *** search
- /* FindDupes.br
- *
- * Stub to use FINDDUPBRMSG
- *
- */
- parse arg arguments
-
- if ~show('p', 'BBSREAD') then do
- address command
- "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
- "WaitForPort BBSREAD"
- end
-
- address BBSREAD
-
- if arguments = '' then
- do
- GETCOMMANDINFO FINDDUPBRMSG TEMP
-
- say 'FindDupes.br 3.1 (28.09.94)'
- say 'Lets you use the FINDDUPBRMSG arexx command from CLI.'
- say 'Template:' TEMP
- exit
- end
-
- FINDDUPBRMSG arguments
- if(rc ~= 0) then
- do
- say BBSREAD.LASTERROR
- exit
- end
-